home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Magazine 28 Bonus / CDRomMagazine-SoftKey-ArtPassion-FrenchVersion-Win31Mac.bin / data / crmixpl.dir / 00087_Script_WIN - END COLOR WHEEL GAME < prev    next >
Text File  |  1996-05-07  |  689b  |  28 lines

  1. -- ---------------------------------------------------------------
  2. -- Handler winColorWheelGame is called when the user successfully
  3. -- mixed all the colors in the color wheel.
  4.  
  5. on winColorWheelGame
  6.   puppetSound "success"
  7.   updateStage
  8.   set the locH of sprite 36 = 350
  9.   set the locV of sprite 36 = 200
  10.   updatestage
  11.   waitTicks 240
  12.   set the locH of sprite 36 = 2000
  13.   updatestage
  14.   
  15.   endColorWheelGame
  16. end
  17.  
  18. -- ---------------------------------------------------------------
  19. -- Handler endColorWheelGame is called when the user successfully
  20.  
  21. on endColorWheelGame
  22.   -- shut off puppets
  23.   -- reset visibles
  24.   -- clear globals ...
  25.   go to frame "CRmixPL1"
  26. end
  27.  
  28.